home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aix_IY44716.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  47 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(14604);
  10.  script_version ("$Revision: 1.1 $");
  11.  name["english"] = "AIX 5.2 : IY44716";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing AIX Critical Security Patch number IY44716
  17. (HANG DUE TO LOOPING IN IPINTR).
  18.  
  19. You should install this patch for your system to be up-to-date.
  20.  
  21. Solution : http://www-912.ibm.com/eserver/support/fixes/ 
  22. Risk Factor : High";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Check for patch IY44716"; 
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "AIX Local Security Checks";
  34.  script_family(english:family["english"]);
  35.  
  36.  script_dependencies("ssh_get_info.nasl");
  37.  script_require_keys("Host/AIX/lslpp");
  38.  exit(0);
  39. }
  40.  
  41.  
  42.  
  43. include("aix.inc");
  44.  
  45.  if( aix_check_patch(release:"5.2", patch:"IY44716", package:"bos.net.tcp.client.5.2.0.12") < 0 ) 
  46.    security_hole(port);
  47.